Content Library Item TransferEndpoint
The Content Library Item TransferEndpoint schema encapsulates a URI along with extra information about it.
{
"uri": "string",
"ssl_certificate_thumbprint": "string",
"ssl_certificate": "string"
}
Transfer endpoint URI. The supported URI schemes are: http
, https
, and ds
.
An endpoint URI with the ds
scheme specifies the location of the file on the datastore. The format of the datastore URI is:
- ds:///vmfs/volumes/uuid/path
When the transfer endpoint is a datastore location, the server can import the file directly from the storage backing without the overhead of streaming over HTTP.
Thumbprint of the expected SSL certificate for this endpoint. Only used for HTTPS connections. The thumbprint is the SHA-1 hash of the DER encoding of the remote endpoint's SSL certificate. If set, the remote endpoint's SSL certificate is only accepted if it matches this thumbprint, and no other certificate validation is performed. The specified sslCertificateThumbprint will not be checked for SSL certificate validation if {TransferEndpoint#sslCertificate} is also set.
If missing or null
, standard certificate validation is performed.
PEM encoded SSL Certificate for this endpoint. Only used for HTTPS connections. If set, the remote endpoint's SSL certificate is only accepted if it matches this, and no other certificate validation is performed.
This property was added in vSphere API 9.0.0.0.
If missing or null
, standard certificate validation is performed.